body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.carousel-caption {
    bottom: 20%;
    text-align: left;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

.carousel-caption h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    margin-bottom: 20px;
}

.carousel-item img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
}

.section-title {
    font-size: clamp(2rem, 4vw, 4rem);
    text-align: center;
    margin: 40px 0 20px;
    font-weight: bold;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.btn-primary-custom {
    background-color: darkred;
    color:white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #6a0000;
    color:white;
    transform: translateY(-2px);
}

.feature-list {
    padding-left: 20px;
}

.feature-list li {
    margin-bottom: 15px;
    font-size: 1rem;
}

.faq-section {
    background-color: #f8f9fa;
    padding: 40px 0;
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    font-weight: bold;
    color: darkred;
    margin-bottom: 5px;
}

.facilities-list {
    padding-left: 20px;
}

.facilities-list li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .carousel-caption {
        bottom: 10%;
        padding: 15px;
    }
    
    .carousel-item img {
        height: 50vh;
    }
    
    .feature-list, .facilities-list {
        padding-left: 15px;
    }
    
    .btn-primary-custom {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .carousel-caption {
        position: relative;
        bottom: 0;
        background: rgba(0, 0, 0, 0.8);
    }
    
    .carousel-item img {
        height: 40vh;
    }
    
    .section-title {
        margin: 30px 0 15px;
    }
}